home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / bk2ad106.zip / removeque.cmd < prev   
OS/2 REXX Batch file  |  1997-07-30  |  202b  |  10 lines

  1. /* rexxer */
  2.  
  3. quename= RXQUEUE("CREATE", "B2A")
  4. if quename\="B2A" then do
  5.     say "Queue already exists!"
  6.      call RXQUEUE "DELETE", quename
  7. end
  8. call RXQUEUE "DELETE", quename
  9. say "Queue removed!"
  10.